home *** CD-ROM | disk | FTP | other *** search
/ Mesolore / Mesolore - Disc 1.iso / pc / Mesolore1 / data / Debates.dir / 00016_Script_16 < prev    next >
Text File  |  2001-04-13  |  272b  |  13 lines

  1. Global gDebateText
  2. on mouseDown
  3.   btnDown
  4. end
  5. on MouseUp
  6.   gDebateText = not gDebateText
  7.   if gDebateText then
  8.     set the member of sprite 5 = "check_x"
  9.   else
  10.     set the member of sprite 5 = "check_n"
  11.   end if
  12.   set the visible of sprite 3 = gDebateText
  13. end